home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / STRCAT.C < prev    next >
C/C++ Source or Header  |  1997-01-12  |  190b  |  14 lines

  1. /*
  2. ** concatenate t to end of s 
  3. ** s must be large enough
  4. */
  5. strcat(s, t) char *s, *t; {
  6.   char *d;
  7.   d = s;
  8.   --s;
  9.   while (*++s) ;
  10.   while (*s++ = *t++) ;
  11.   return (d);
  12.   }
  13.  
  14.